home *** CD-ROM | disk | FTP | other *** search
/ Aminet 22 / Aminet 22 (1997)(GTI - Schatztruhe)[!][Dec 1997].iso / Aminet / dev / src / ConfigFileSrc.lha / ConfigFileSrc12 / RexxLibrary / String.h < prev   
Encoding:
C/C++ Source or Header  |  1997-10-02  |  660 b   |  26 lines

  1. /*
  2. **        $PROJECT: RexxConfigFile.library
  3. **        $FILE: String.h
  4. **        $DESCRIPTION: Header file of prototypes.
  5. **
  6. **        (C) Copyright 1997 Marcel Karas
  7. **             All Rights Reserved.
  8. */
  9.  
  10. #ifndef STRING_H
  11. #define STRING_H 1
  12.  
  13. extern ULONG    __builtin_strlen(STRPTR);
  14. extern ULONG    __builtin_strcmp(STRPTR, STRPTR);
  15. extern STRPTR    __builtin_strcpy(STRPTR, STRPTR);
  16. extern VOID        __builtin_memcpy(APTR,APTR,ULONG);
  17. extern STRPTR    strstr(STRPTR,STRPTR);
  18.  
  19. #define StrLen(a)            __builtin_strlen(a)
  20. #define StrCmp(a,b)        __builtin_strcmp(a,b)
  21. #define StrCpy(a,b)        __builtin_strcpy(a,b)
  22. #define MemCpy(a,b,c)    __builtin_memcpy(a,b,c)
  23. #define StrStr(a,b)        strstr(a,b)
  24.  
  25. #endif /* STRING_H */
  26.